home *** CD-ROM | disk | FTP | other *** search
/ The Trig Explorer / The Trig Explorer.iso / mac / Explorer / START.dxr / 00008.ls < prev    next >
Encoding:
Text File  |  1998-07-22  |  588 b   |  24 lines

  1. on mouseUp
  2.   global FormulasOn
  3.   if FormulasOn = 0 then
  4.     set FormulaRect to rect(the stageLeft + 50, the stageTop + 50, the stageLeft + 400 + 50, the stageTop + 240 + 50)
  5.     set Formula to window "Formulas"
  6.     set the rect of Formula to FormulaRect
  7.     set the fileName of Formula to "Formulas"
  8.     if the machineType = 256 then
  9.       set the windowType of Formula to 49
  10.     else
  11.       set the windowType of Formula to 5
  12.     end if
  13.     set the titleVisible of Formula to 1
  14.     open(Formula)
  15.     set FormulasOn to 1
  16.   else
  17.     closeFormula()
  18.   end if
  19. end
  20.  
  21. on mouseDown
  22.   button()
  23. end
  24.